Contents | Index | < Browse | Browse >
LETTERlongjmpULETTER
Performs a long jump.
Overview
#include <setjmp.h>
(void) longjmp(buffer,result);
jmp_buf buffer;
int result;
Portability
ANSI
Description
Jumps to the position in "buffer" set by a previous call to setjmp.
Also allows you to jump across functions. "result" is the value returned by setjmp.
See also
setjmp